HTMLify
index.html
Views: 17 | Author: huxn-webdev
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Accordion</title> <link rel="stylesheet" href="style.css" /> </head> <body> <ul id="accordion"> <li> <label for="first">What is HTML? <span>></span></label> <input type="radio" name="accordion" id="first" checked /> <div class="content"> <p> The HyperText Markup Language or HTML is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets and scripting languages such as JavaScript. </p> </div> </li> <li> <label for="second">What is CSS? <span>></span></label> <input type="radio" name="accordion" id="second" /> <div class="content"> <p> Cascading Style Sheets is a style sheet language used for describing the presentation of a document written in a markup language such as HTML. CSS is a cornerstone technology of the World Wide Web, alongside HTML and JavaScript. </p> </div> </li> <li> <label for="third">What is JavaScript? <span>></span></label> <input type="radio" name="accordion" id="third" /> <div class="content"> <p> JavaScript, often abbreviated JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. Over 97% of websites use JavaScript on the client side for web page behavior, often incorporating third-party libraries. </p> </div> </li> <li> <label for="fourth">What is React? <span>></span></label> <input type="radio" name="accordion" id="fourth" /> <div class="content"> <p> React is a free and open-source front-end JavaScript library for building user interfaces based on UI components. It is maintained by Meta and a community of individual developers and companies. </p> </div> </li> <li> <label for="fifth">What is Node.js? <span>></span></label> <input type="radio" name="accordion" id="fifth" /> <div class="content"> <p> Node.js is an open-source, cross-platform, back-end JavaScript runtime environment that runs on the V8 engine and executes JavaScript code outside a web browser </p> </div> </li> </ul> </body> </html> |